home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 November / CHIP Kasım 1996.iso / prog / retouch / script.mak < prev   
Text File  |  1996-09-29  |  311b  |  22 lines

  1. QS.ReTouch Script:
  2.  
  3. Selection = "*.bmp"
  4. while (Selection)
  5.   Load()
  6.   Filter(Emboss)
  7.   ColDepth(NormColor)
  8.   Save("..\", BMP)
  9.   Close()
  10.   Selection.Next
  11. endwhile
  12.  
  13. Selection = "sail.bmp"
  14. Load()
  15. Rotate(15.4, 1)
  16. Size(300,,1)
  17. Contrast(235, 90, 10)
  18. ColDepth(NormColor)
  19. Save("..\")
  20. Close()
  21.  
  22. Return